home *** CD-ROM | disk | FTP | other *** search
- CONJG(3M) Last changed: 1-6-98
-
-
- NNAAMMEE
- CCOONNJJGG - Computes conjugate of a complex number
-
- SSYYNNOOPPSSIISS
- CCOONNJJGG (([ZZ==]_z]))
-
- IIMMPPLLEEMMEENNTTAATTIIOONN
- UNICOS and UNICOS/mk systems
-
- SSTTAANNDDAARRDDSS
- Fortran 90
-
- DDEESSCCRRIIPPTTIIOONN
- CCOONNJJGG returns the complex conjugate of a complex number. CCOONNJJGG is an
- elemental function for the CF90 compiler.
-
- This function evaluates _y = _x - _i_x .
- _r _i
- AArrgguummeenntt RRaannggee 2450
- |_x |, |_x | < infinity (infinity is approximately 10 )
- _r _i
- 308
- On UNICOS/mk systems, infinity is approximately 10
-
- NNOOTTEESS
- The name of this intrinsic can be passed as an argument.
-
- EEXXAAMMPPLLEESS
- The following program gives RREESSUULLTT==((33..00,,--44..00)):
-
- PROGRAM CONTEST
- COMPLEX ARG, RESULT
- ARG=(3.0,4.0)
- RESULT=CONJG(ARG)
- PRINT *,RESULT
- STOP
- END
-
- SSEEEE AALLSSOO
- _I_n_t_r_i_n_s_i_c _P_r_o_c_e_d_u_r_e_s _R_e_f_e_r_e_n_c_e _M_a_n_u_a_l, publication SR-2138, for the
- printed version of this man page.
-
-